home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / Emulation_Include_Files / rpcdce.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  823 b   |  58 lines

  1. /*++
  2.  
  3. Copyright (c) 1991-1998 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     rpcdce.h
  8.  
  9. Abstract:
  10.  
  11.     This module contains the DCE RPC runtime APIs.
  12.  
  13. Author:
  14.  
  15.     Michael Montague (mikemon) 25-Sep-1991
  16.  
  17. Revision History:
  18.  
  19. --*/
  20.  
  21. #ifndef __RPCDCE_H__
  22. #define __RPCDCE_H__
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. #define IN
  29. #define OUT
  30. #define OPTIONAL
  31.  
  32. #ifndef GUID_DEFINED
  33. #define GUID_DEFINED
  34. typedef struct _GUID
  35. {
  36.     unsigned long Data1;
  37.     unsigned short Data2;
  38.     unsigned short Data3;
  39.     unsigned char Data4[8];
  40. } GUID, *PGUID;
  41. #endif /* GUID_DEFINED */
  42.  
  43. #ifndef UUID_DEFINED
  44. #define UUID_DEFINED
  45. typedef GUID UUID;
  46. #ifndef uuid_t
  47. #define uuid_t UUID
  48. #endif
  49. #endif
  50.  
  51. typedef void __RPC_FAR * RPC_IF_HANDLE;
  52.  
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56.  
  57. #endif /* __RPCDCE_H__ */
  58.